
[dbo].[RecurringDonationExpectedPaymentSetStatusRef]
CREATE TABLE [dbo].[RecurringDonationExpectedPaymentSetStatusRef]
(
[RecurringDonationExpectedPaymentSetStatusCode] [smallint] NOT NULL,
[RecurringDonationExpectedPaymentSetStatusName] [nvarchar] (40) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[RecurringDonationExpectedPaymentSetStatusDesc] [nvarchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[RecurringDonationExpectedPaymentSetStatusRef] ADD CONSTRAINT [PK_RecurringDonationExpectedPaymentSetStatusRef] PRIMARY KEY CLUSTERED ([RecurringDonationExpectedPaymentSetStatusCode]) ON [PRIMARY]
GO
GRANT REFERENCES ON [dbo].[RecurringDonationExpectedPaymentSetStatusRef] TO [IMIS]
GRANT SELECT ON [dbo].[RecurringDonationExpectedPaymentSetStatusRef] TO [IMIS]
GRANT INSERT ON [dbo].[RecurringDonationExpectedPaymentSetStatusRef] TO [IMIS]
GRANT DELETE ON [dbo].[RecurringDonationExpectedPaymentSetStatusRef] TO [IMIS]
GRANT UPDATE ON [dbo].[RecurringDonationExpectedPaymentSetStatusRef] TO [IMIS]
GO